nCo=int(input("Enter number of computers: "))
nT=int(input("Enter number of tables: "))
nCh=int(input("Enter number of chairs: "))
nL=float(input("Enter hours of work: "))
rCo=float(input("Enter cost of each computer: "))
rT=float(input("Enter cost of each table: "))
rCh=float(input("Enter cost of each chair: "))
rL=float(input("Enter wage per hour: "))
cCo=rCo*nCo
cT=rT*nT
cCh=rCh*nCh
cFu=cT+cCh
cL=nL*rL
cTot=cCo+cT+cCh+cFu+cL
print(f"Total expenses: {cTot}")
print(f"Expenses breakdown: \n\tComputers: {cCo}\n\tFurniture: {cFu}\n\t\tTables: {cT}\n\t\tChairs: {cCh}\n\tLabour: {cL}")